home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet bezpieczenstwa
/
mini Pentoo LiveCD 2006.1
/
mpentoo-2006.1.iso
/
livecd.squashfs
/
usr
/
include
/
repair
/
cleanup.h
< prev
next >
Wrap
C/C++ Source or Header
|
2006-01-09
|
744b
|
32 lines
/* Copyright 2001, 2002, 2003, 2004 by Hans Reiser, licensing governed by
reiser4progs/COPYING.
repair/cleanup.h -- the structures and methods needed for tree
cleanuping as the end of filsystem recovery. */
#ifndef REPAIR_CLEANUP_H
#define REPAIR_CLEANUP_H
#include <time.h>
#include <repair/librepair.h>
/* Statistics gathered during the pass. */
typedef struct repair_cleanup_stat {
uint64_t removed, linked;
time_t time;
} repair_cleanup_stat_t;
/* Data filter works on. */
typedef struct repair_cleanup {
repair_data_t *repair;
reiser4_place_t neigh;
repair_cleanup_stat_t stat;
aal_gauge_t *gauge;
reiser4_place_t *cur_place;
} repair_cleanup_t;
extern errno_t repair_cleanup(repair_cleanup_t *cleanup);
#endif